home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Files / Directories / FileInfoLoop.h < prev    next >
Text File  |  2000-06-23  |  377b  |  26 lines

  1. // FileInfoLoop.h
  2.  
  3. #ifndef FileInfoLoop_h
  4. #define FileInfoLoop_h
  5.  
  6. #ifndef CatInfoLoop_h
  7. #include "CatInfoLoop.h"
  8. #endif
  9.  
  10. class FileInfoLoop: public CatInfoLoop
  11.   {
  12.     private:
  13.         void AdvanceToNextMatch();
  14.         
  15.     public:
  16.         FileInfoLoop()            {}
  17.         FileInfoLoop( Directory );
  18.  
  19.         void Start( Directory );
  20.         
  21.         void operator++();
  22.         void operator++(int)                        { operator++(); }
  23.   };
  24.  
  25. #endif
  26.